From: Markus Rost Date: Thu, 5 Sep 2002 18:41:24 +0000 (+0000) Subject: (table-command-prefix): Fix type. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~30807 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=345708f677fea3be7d3db42443cc7b222b5f2836;p=emacs.git (table-command-prefix): Fix type. --- diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 3390795bceb..1406089b2ed 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -672,7 +672,7 @@ height." (defcustom table-command-prefix [(control c) (control c)] "*Key sequence to be used as prefix for table command key bindings." - :type '((vector (list symbol) symbol)) + :type '(vector (repeat :inline t sexp)) :tag "Table Command Prefix" :group 'table)